home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / Makefile < prev    next >
Makefile  |  2000-03-25  |  311b  |  16 lines

  1. #
  2. # Because many Unix users are used to type 'make' in order to install
  3. # a software.
  4. #
  5. all : bin/compile_to_c
  6.  
  7. bin/compile_to_c : bin_c/compile_to_c.h
  8.     gcc -o install install.c
  9.     ./install
  10.     rm -f ./install
  11.  
  12. interactive : ./bin_c/compile_to_c.h
  13.     gcc -o install install.c
  14.     ./install -interactive
  15.     rm -f ./install
  16.